home *** CD-ROM | disk | FTP | other *** search
- <?php
- /* $Id: tbl_properties_structure.php,v 2.35.2.1 2005/04/26 16:00:57 lem9 Exp $ */
- // vim: expandtab sw=4 ts=4 sts=4:
-
- require_once('./libraries/grab_globals.lib.php');
- require_once('./libraries/common.lib.php');
- require_once('./libraries/mysql_charsets.lib.php');
-
- /**
- * Drop multiple fields if required
- */
-
- // workaround for IE problem:
- if (isset($submit_mult_change_x)) {
- $submit_mult = $strChange;
- } elseif (isset($submit_mult_drop_x)) {
- $submit_mult = $strDrop;
- } elseif (isset($submit_mult_primary_x)) {
- $submit_mult = $strPrimary;
- } elseif (isset($submit_mult_index_x)) {
- $submit_mult = $strIndex;
- } elseif (isset($submit_mult_unique_x)) {
- $submit_mult = $strUnique;
- } elseif (isset($submit_mult_fulltext_x)) {
- $submit_mult = $strIdxFulltext;
- }
-
- if ((!empty($submit_mult) && isset($selected_fld))
- || isset($mult_btn)) {
- $action = 'tbl_properties_structure.php';
- $err_url = 'tbl_properties_structure.php?' . PMA_generate_common_url($db, $table);
- require('./mult_submits.inc.php');
- }
-
- /**
- * Runs common work
- */
- require('./tbl_properties_common.php');
- $url_query .= '&goto=tbl_properties_structure.php&back=tbl_properties_structure.php';
-
- /**
- * Prepares the table structure display
- */
-
- /**
- * Gets tables informations
- */
- require('./tbl_properties_table_info.php');
-
- /**
- * Show result of multi submit operation
- */
- if ((!empty($submit_mult) && isset($selected_fld))
- || isset($mult_btn)) {
- $message = $strSuccess;
- }
-
- /**
- * Displays top menu links
- */
- require('./tbl_properties_links.php');
-
- // 2. Gets table keys and retains them
- $result = PMA_DBI_query('SHOW KEYS FROM ' . PMA_backquote($table) . ';');
- $primary = '';
- $ret_keys = array();
- $pk_array = array(); // will be use to emphasis prim. keys in the table view
- while ($row = PMA_DBI_fetch_assoc($result)) {
- $ret_keys[] = $row;
- // Backups the list of primary keys
- if ($row['Key_name'] == 'PRIMARY') {
- $primary .= $row['Column_name'] . ', ';
- $pk_array[$row['Column_name']] = 1;
- }
- } // end while
- PMA_DBI_free_result($result);
-
- // 3. Get fields
- $fields_rs = PMA_DBI_query('SHOW FULL FIELDS FROM ' . PMA_backquote($table) . ';', NULL, PMA_DBI_QUERY_STORE);
- $fields_cnt = PMA_DBI_num_rows($fields_rs);
-
- // Get more complete field information
- // For now, this is done just for MySQL 4.1.2+ new TIMESTAMP options
- // but later, if the analyser returns more information, it
- // could be executed for any MySQL version and replace
- // the info given by SHOW FULL FIELDS FROM.
-
- if (PMA_MYSQL_INT_VERSION >= 40102) {
- $show_create_table_query = 'SHOW CREATE TABLE '
- . PMA_backquote($db) . '.' . PMA_backquote($table);
- $show_create_table_res = PMA_DBI_query($show_create_table_query);
- list(,$show_create_table) = PMA_DBI_fetch_row($show_create_table_res);
- PMA_DBI_free_result($show_create_table_res);
- unset($show_create_table_res, $show_create_table_query);
- $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
- }
-
- /**
- * Displays the table structure ('show table' works correct since 3.23.03)
- */
-
- $i = 0;
-
- ?>
-
- <!-- TABLE INFORMATION -->
-
- <form method="post" action="tbl_properties_structure.php" name="fieldsForm">
- <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
- <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
- <tr>
- <?php echo $tbl_is_view ? '' : ' <th id="th' . ++$i . '"> </th>' . "\n"; ?>
- <th id="th<?php echo ++$i; ?>"> <?php echo $strField; ?> </th>
- <th id="th<?php echo ++$i; ?>"><?php echo $strType; ?></th>
- <?php echo PMA_MYSQL_INT_VERSION >= 40100 ? ' <th id="th' . ++$i . '">' . $strCollation . '</th>' . "\n" : ''; ?>
- <th id="th<?php echo ++$i; ?>"><?php echo $strAttr; ?></th>
- <th id="th<?php echo ++$i; ?>"><?php echo $strNull; ?></th>
- <th id="th<?php echo ++$i; ?>"><?php echo $strDefault; ?></th>
- <th id="th<?php echo ++$i; ?>"><?php echo $strExtra; ?></th>
- <?php echo $tbl_is_view ? '' : ' <th colspan="6" id="th' . ++$i . '">' . $strAction . '</th>' . "\n"; ?>
- </tr>
-
- <?php
- unset($i);
- $comments_map = array();
- $mime_map = array();
-
- if ($GLOBALS['cfg']['ShowPropertyComments']) {
- require_once('./libraries/relation.lib.php');
- require_once('./libraries/transformations.lib.php');
-
- $cfgRelation = PMA_getRelationsParam();
-
-
- if ($cfgRelation['commwork']) {
- $comments_map = PMA_getComments($db, $table);
-
- if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) {
- $mime_map = PMA_getMIME($db, $table, true);
- }
- }
- }
-
- $i = 0;
- $aryFields = array();
- $checked = (!empty($checkall) ? ' checked="checked"' : '');
- $save_row = array();
-
- while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
- $save_row[] = $row;
- $i++;
- $bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
- $aryFields[] = $row['Field'];
-
- if ($GLOBALS['cfg']['BrowsePointerEnable'] == TRUE) {
- $on_mouse = ' onmouseover="setPointer(this, ' . $i . ', \'over\', \'' . $bgcolor . '\', \'' . $GLOBALS['cfg']['BrowsePointerColor'] . '\', \'' . $GLOBALS['cfg']['BrowseMarkerColor'] . '\');"'
- . ' onmouseout="setPointer(this, ' . $i . ', \'out\', \'' . $bgcolor . '\', \'' . $GLOBALS['cfg']['BrowsePointerColor'] . '\', \'' . $GLOBALS['cfg']['BrowseMarkerColor'] . '\');"';
- } else {
- $on_mouse = '';
- }
- if ($GLOBALS['cfg']['BrowseMarkerEnable'] == TRUE) {
- $on_mouse .= ' onmousedown="setPointer(this, ' . $i . ', \'click\', \'' . $bgcolor . '\', \'' . $GLOBALS['cfg']['BrowsePointerColor'] . '\', \'' . $GLOBALS['cfg']['BrowseMarkerColor'] . '\');"';
- }
-
- $click_mouse = ' onmousedown="document.getElementById(\'checkbox_row_' . $i . '\').checked = (document.getElementById(\'checkbox_row_' . $i . '\').checked ? false : true);" ';
-
- $type = $row['Type'];
- // reformat mysql query output - staybyte - 9. June 2001
- // loic1: set or enum types: slashes single quotes inside options
- if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
- $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'', ',' . $tmp[2]), 1);
- $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
- $type_nowrap = '';
-
- $binary = 0;
- $unsigned = 0;
- $zerofill = 0;
- } else {
- $type_nowrap = ' nowrap="nowrap"';
- // strip the "BINARY" attribute, except if we find "BINARY(" because
- // this would be a BINARY or VARBINARY field type
- if (!preg_match('@BINARY[\(]@i', $type)) {
- $type = preg_replace('@BINARY@i', '', $type);
- }
- $type = preg_replace('@ZEROFILL@i', '', $type);
- $type = preg_replace('@UNSIGNED@i', '', $type);
- if (empty($type)) {
- $type = ' ';
- }
-
- if (!preg_match('@BINARY[\(]@i', $row['Type'])) {
- $binary = stristr($row['Type'], 'blob') || stristr($row['Type'], 'binary');
- } else {
- $binary = FALSE;
- }
-
- $unsigned = stristr($row['Type'], 'unsigned');
- $zerofill = stristr($row['Type'], 'zerofill');
- }
-
- // rabus: Devide charset from the rest of the type definition (MySQL >= 4.1)
- unset($field_charset);
- if (PMA_MYSQL_INT_VERSION >= 40100) {
- if ((substr($type, 0, 4) == 'char'
- || substr($type, 0, 7) == 'varchar'
- || substr($type, 0, 4) == 'text'
- || substr($type, 0, 8) == 'tinytext'
- || substr($type, 0, 10) == 'mediumtext'
- || substr($type, 0, 8) == 'longtext'
- || substr($type, 0, 3) == 'set'
- || substr($type, 0, 4) == 'enum'
- ) && !$binary) {
- if (strpos($type, ' character set ')) {
- $type = substr($type, 0, strpos($type, ' character set '));
- }
- if (!empty($row['Collation'])) {
- $field_charset = $row['Collation'];
- } else {
- $field_charset = '';
- }
- } else {
- $field_charset = '';
- }
- }
-
- // garvin: Display basic mimetype [MIME]
- if ($cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfg['BrowseMIME'] && isset($mime_map[$row['Field']]['mimetype'])) {
- $type_mime = '<br />MIME: ' . str_replace('_', '/', $mime_map[$row['Field']]['mimetype']);
- } else {
- $type_mime = '';
- }
-
- $attribute = ' ';
- if ($binary) {
- $attribute = 'BINARY';
- }
- if ($unsigned) {
- $attribute = 'UNSIGNED';
- }
- if ($zerofill) {
- $attribute = 'UNSIGNED ZEROFILL';
- }
-
- // MySQL 4.1.2+ TIMESTAMP options
- // (if on_update_current_timestamp is set, then it's TRUE)
- if (isset($analyzed_sql[0]['create_table_fields'][$row['Field']]['on_update_current_timestamp'])) {
- $attribute = 'ON UPDATE CURRENT_TIMESTAMP';
- }
-
- if (!isset($row['Default'])) {
- if ($row['Null'] == 'YES') {
- $row['Default'] = '<i>NULL</i>';
- }
- } else {
- $row['Default'] = htmlspecialchars($row['Default']);
- }
-
- $field_encoded = urlencode($row['Field']);
- $field_name = htmlspecialchars($row['Field']);
-
- // garvin: underline commented fields and display a hover-title (CSS only)
-
- $comment_style = '';
- if (isset($comments_map[$row['Field']])) {
- $field_name = '<span style="border-bottom: 1px dashed black;" title="' . htmlspecialchars($comments_map[$row['Field']]) . '">' . $field_name . '</span>';
- }
-
- if (isset($pk_array[$row['Field']])) {
- $field_name = '<u>' . $field_name . '</u>';
- }
- echo "\n";
-
- $titles = array();
- if ($cfg['PropertiesIconic'] == true) {
- // We need to copy the value or else the == 'both' check will always return true
- $propicon = (string)$cfg['PropertiesIconic'];
-
- if ($propicon == 'both') {
- $iconic_spacer = '<div class="nowrap">';
- } else {
- $iconic_spacer = '';
- }
-
- // images replaced 2004-05-08 by mkkeck
- $titles['Change'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_edit.png" alt="' . $strChange . '" title="' . $strChange . '" border="0" />';
- $titles['Drop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />';
- $titles['NoDrop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />';
- $titles['Primary'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_primary.png" alt="' . $strPrimary . '" title="' . $strPrimary . '" border="0" />';
- $titles['Index'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_index.png" alt="' . $strIndex . '" title="' . $strIndex . '" border="0" />';
- $titles['Unique'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_unique.png" alt="' . $strUnique . '" title="' . $strUnique . '" border="0" />';
- $titles['IdxFulltext'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_ftext.png" alt="' . $strIdxFulltext . '" title="' . $strIdxFulltext . '" border="0" />';
- $titles['NoPrimary'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'bd_primary.png" alt="' . $strPrimary . '" title="' . $strPrimary . '" border="0" />';
- $titles['NoIndex'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'bd_index.png" alt="' . $strIndex . '" title="' . $strIndex . '" border="0" />';
- $titles['NoUnique'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'bd_unique.png" alt="' . $strUnique . '" title="' . $strUnique . '" border="0" />';
- $titles['NoIdxFulltext'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'bd_ftext.png" alt="' . $strIdxFulltext . '" title="' . $strIdxFulltext . '" border="0" />';
-
- if ($propicon == 'both') {
- $titles['Change'] .= ' ' . $strChange . '</div>';
- $titles['Drop'] .= ' ' . $strDrop . '</div>';
- $titles['NoDrop'] .= ' ' . $strDrop . '</div>';
- $titles['Primary'] .= ' ' . $strPrimary . '</div>';
- $titles['Index'] .= ' ' . $strIndex . '</div>';
- $titles['Unique'] .= ' ' . $strUnique . '</div>';
- $titles['IdxFulltext' ] .= ' ' . $strIdxFulltext . '</div>';
- $titles['NoPrimary'] .= ' ' . $strPrimary . '</div>';
- $titles['NoIndex'] .= ' ' . $strIndex . '</div>';
- $titles['NoUnique'] .= ' ' . $strUnique . '</div>';
- $titles['NoIdxFulltext'] .= ' ' . $strIdxFulltext . '</div>';
- }
- } else {
- $titles['Change'] = $strChange;
- $titles['Drop'] = $strDrop;
- $titles['NoDrop'] = $strDrop;
- $titles['Primary'] = $strPrimary;
- $titles['Index'] = $strIndex;
- $titles['Unique'] = $strUnique;
- $titles['IdxFulltext'] = $strIdxFulltext;
- $titles['NoPrimary'] = $strPrimary;
- $titles['NoIndex'] = $strIndex;
- $titles['NoUnique'] = $strUnique;
- $titles['NoIdxFulltext'] = $strIdxFulltext;
- }
-
- ?>
- <tr <?php echo $on_mouse; ?>>
- <?php
- if (!$tbl_is_view) {
- ?>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <input type="checkbox" name="selected_fld[]" value="<?php echo $field_encoded; ?>" id="checkbox_row_<?php echo $i; ?>" <?php echo $checked; ?> />
- </td>
- <?php
- }
- ?>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"> <label onclick="return (document.getElementById('checkbox_row_<?php echo $i; ?>') ? false : true)" for="checkbox_row_<?php echo $i; ?>"><?php echo $field_name; ?></label> </td>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>"<?php echo $type_nowrap; ?>><?php echo $type; echo $type_mime; ?><bdo dir="ltr"></bdo></td>
- <?php echo PMA_MYSQL_INT_VERSION >= 40100 ? ' <td bgcolor="' . $bgcolor . '" ' . $click_mouse . '>' . (empty($field_charset) ? ' ' : '<dfn title="' . PMA_getCollationDescr($field_charset) . '">' . $field_charset . '</dfn>') . '</td>' . "\n" : '' ?>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap" style="font-size: <?php echo $font_smallest; ?>"><?php echo $attribute; ?></td>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>"><?php echo (($row['Null'] == 'YES') ? $strYes : $strNo); ?> </td>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
- <td <?php echo $click_mouse; ?> bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>
- <?php
- if (!$tbl_is_view) {
- ?>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <a href="tbl_alter.php?<?php echo $url_query; ?>&field=<?php echo $field_encoded; ?>">
- <?php echo $titles['Change']; ?></a>
- </td>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <?php
- // loic1: Drop field only if there is more than one field in the table
- if ($fields_cnt > 1) {
- echo "\n";
- ?>
- <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP ' . PMA_backquote($row['Field'])); ?>&cpurge=1&purgekey=<?php echo urlencode($row['Field']); ?>&zero_rows=<?php echo urlencode(sprintf($strFieldHasBeenDropped, htmlspecialchars($row['Field']))); ?>"
- onclick="return confirmLink(this, 'ALTER TABLE <?php echo PMA_jsFormat($table); ?> DROP <?php echo PMA_jsFormat($row['Field']); ?>')">
- <?php echo $titles['Drop']; ?></a>
- <?php
- } else {
- echo "\n" . ' ' . $titles['NoDrop'];
- }
- echo "\n";
- ?>
- </td>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <?php
- if ($type == 'text' || $type == 'blob') {
- echo $titles['NoPrimary'] . "\n";
- } else {
- echo "\n";
- ?>
- <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ( empty($primary) ? '' : ' DROP PRIMARY KEY,') . ' ADD PRIMARY KEY(' . PMA_backquote($row['Field']) . ')'); ?>&zero_rows=<?php echo urlencode(sprintf($strAPrimaryKey, htmlspecialchars($row['Field']))); ?>"
- onclick="return confirmLink(this, 'ALTER TABLE <?php echo PMA_jsFormat($table) . ( empty($primary) ? '' : ' DROP PRIMARY KEY,'); ?> ADD PRIMARY KEY(<?php echo PMA_jsFormat($row['Field']); ?>)')">
- <?php echo $titles['Primary']; ?></a>
- <?php
- }
- echo "\n";
- ?>
- </td>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <?php
- if ($type == 'text' || $type == 'blob') {
- echo $titles['NoIndex'] . "\n";
- } else {
- echo "\n";
- ?>
- <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD INDEX(' . PMA_backquote($row['Field']) . ')'); ?>&zero_rows=<?php echo urlencode(sprintf($strAnIndex ,htmlspecialchars($row['Field']))); ?>">
- <?php echo $titles['Index']; ?></a>
- <?php
- }
- echo "\n";
- ?>
- </td>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>">
- <?php
- if ($type == 'text' || $type == 'blob') {
- echo $titles['NoUnique'] . "\n";
- } else {
- echo "\n";
- ?>
- <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD UNIQUE(' . PMA_backquote($row['Field']) . ')'); ?>&zero_rows=<?php echo urlencode(sprintf($strAnIndex , htmlspecialchars($row['Field']))); ?>">
- <?php echo $titles['Unique']; ?></a>
- <?php
- }
- echo "\n";
- ?>
- </td>
- <?php
- if ((!empty($tbl_type) && $tbl_type == 'MYISAM')
- && (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'varchar'))) {
- echo "\n";
- ?>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
- <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ALTER TABLE ' . PMA_backquote($table) . ' ADD FULLTEXT(' . PMA_backquote($row['Field']) . ')'); ?>&zero_rows=<?php echo urlencode(sprintf($strAnIndex , htmlspecialchars($row['Field']))); ?>">
- <?php echo $titles['IdxFulltext']; ?></a>
- </td>
- <?php
- } else {
- echo "\n";
- ?>
- <td align="center" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
- <?php echo $titles['NoIdxFulltext'] . "\n"; ?>
- </td>
- <?php
- } // end if... else...
- echo "\n";
- } // end if (!$tbl_is_view)
- ?>
- </tr>
- <?php
- unset($field_charset);
- } // end while
-
- echo "\n";
-
- if (!$tbl_is_view) {
-
- $checkall_url = 'tbl_properties_structure.php?' . PMA_generate_common_url($db,$table);
- ?>
-
- <tr>
- <td colspan="<?php echo PMA_MYSQL_INT_VERSION >= 40100 ? '14' : '13'; ?>">
- <table>
- <tr>
- <td>
- <img src="<?php echo $pmaThemeImage . 'arrow_' . $text_dir . '.png'; ?>" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
- <a href="<?php echo $checkall_url; ?>&checkall=1" onclick="setCheckboxes('fieldsForm', true); return false;">
- <?php echo $strCheckAll; ?></a>
- /
- <a href="<?php echo $checkall_url; ?>" onclick="setCheckboxes('fieldsForm', false); return false;">
- <?php echo $strUncheckAll; ?></a>
-
- <i><?php echo $strWithChecked; ?></i>
- </td>
- <td>
- <?php
-
- if ($cfg['PropertiesIconic']) {
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_change', $strChange, 'b_edit.png');
- // Drop button if there is at least two fields
- if ($fields_cnt > 1) {
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_drop', $strDrop, 'b_drop.png');
- }
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_primary', $strPrimary, 'b_primary.png');
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_index', $strIndex, 'b_index.png');
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_unique', $strUnique, 'b_unique.png');
- if ((!empty($tbl_type) && $tbl_type == 'MYISAM')) {
- PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_fulltext', $strIdxFulltext, 'b_ftext.png');
- }
- } else {
- echo '<input type="submit" name="submit_mult" value="' . $strChange . '" title="' . $strChange . '" />' . "\n";
- // Drop button if there is at least two fields
- if ($fields_cnt > 1) {
- echo ' <i>' . $strOr . '</i> ' . "\n"
- . '<input type="submit" name="submit_mult" value="' . $strDrop . '" title="' . $strDrop . '" />' . "\n";
- }
- echo ' <i>' . $strOr . '</i> ' . "\n"
- . '<input type="submit" name="submit_mult" value="' . $strPrimary . '" title="' . $strPrimary . '" />' . "\n";
- echo ' <i>' . $strOr . '</i> ' . "\n"
- . '<input type="submit" name="submit_mult" value="' . $strIndex . '" title="' . $strIndex . '" />' . "\n";
- echo ' <i>' . $strOr . '</i> ' . "\n"
- . '<input type="submit" name="submit_mult" value="' . $strUnique . '" title="' . $strUnique . '" />' . "\n";
- if ((!empty($tbl_type) && $tbl_type == 'MYISAM')) {
- echo ' <i>' . $strOr . '</i> ' . "\n"
- . '<input type="submit" name="submit_mult" value="' . $strIdxFulltext . '" title="' . $strIdxFulltext . '" />' . "\n";
- }
- }
-
- ?>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <?php
- }
- ?>
- </table>
- </form>
-
- <hr />
-
-
- <?php
- if (!$tbl_is_view) {
- /**
- * Work on the table
- */
- ?>
- <!-- TABLE WORK -->
- <!-- Printable view of the table -->
- <a href="tbl_printview.php?<?php echo $url_query; ?>"><?php
- if ($cfg['PropertiesIconic']) {
- echo '<img src="' . $pmaThemeImage . 'b_print.png" border="0" hspace="2" align="middle" width="16" height="16" alt="' . $strPrintView . '"/>';
- }
- echo $strPrintView;
- ?></a>
-
- <?php
- // if internal relations are available, or the table type is INNODB
- // ($tbl_type comes from tbl_properties_table_info.php)
-
- if ($cfg['Server']['relation'] || $tbl_type=="INNODB") {
- ?>
- <!-- Work on Relations -->
- <a href="tbl_relation.php?<?php echo $url_query; ?>"><?php
- if ($cfg['PropertiesIconic']) {
- echo '<img src="' . $pmaThemeImage . 'b_relations.png" border="0" hspace="2" align="middle" width="16" height="16" alt="' . $strRelationView . '"/>';
- }
- echo $strRelationView;
- ?></a>
- <?php
- }
- ?>
- <!-- Let MySQL propose the optimal structure -->
- <a href="sql.php?<?php echo $url_query; ?>&session_max_rows=all&sql_query=<?php echo urlencode('SELECT * FROM ' . PMA_backquote($table) . ' PROCEDURE ANALYSE()'); ?>"><?php
- if ($cfg['PropertiesIconic']) {
- echo '<img src="' . $pmaThemeImage . 'b_tblanalyse.png" border="0" hspace="2" align="middle" width="16" height="16" alt="' . $strStructPropose . '" />';
- }
- echo $strStructPropose;
- ?></a><?php
- echo PMA_showMySQLDocu('Extending_MySQL', 'procedure_analyse') . "\n";
- ?><br />
- <!-- Add some new fields -->
- <form method="post" action="tbl_addfield.php"
- onsubmit="return checkFormElementInRange(this, 'num_fields', 1)">
- <?php
- echo PMA_generate_common_hidden_inputs($db, $table);
- if ($cfg['PropertiesIconic']) {
- echo '<img src="' . $pmaThemeImage . 'b_insrow.png" width="16" height="16" border="0" hspace="2" align="middle" alt="' . $strAddNewField . '"/>';
- }
- echo sprintf($strAddFields, '<input type="text" name="num_fields" size="2" maxlength="2" value="1" style="vertical-align: middle" onfocus="this.select()" />');
- ?>
- <input type="radio" name="field_where" id="radio_field_where_last" value="last" checked="checked" /><label for="radio_field_where_last"><?php echo $strAtEndOfTable; ?></label>
- <input type="radio" name="field_where" id="radio_field_where_first" value="first" /><label for="radio_field_where_first"><?php echo $strAtBeginningOfTable; ?></label>
- <input type="radio" name="field_where" id="radio_field_where_after" value="after" /><?php
- $fieldOptions = '</label><select name="after_field" style="vertical-align: middle" onclick="this.form.field_where[2].checked=true" onchange="this.form.field_where[2].checked=true">';
- foreach ($aryFields AS $fieldname) {
- $fieldOptions .= '<option value="' . htmlspecialchars($fieldname) . '">' . htmlspecialchars($fieldname) . '</option>' . "\n";
- }
- unset($aryFields);
- $fieldOptions .= '</select><label for="radio_field_where_after">';
- echo str_replace('<label for="radio_field_where_after"></label>', '', '<label for="radio_field_where_after">' . sprintf($strAfter, $fieldOptions) . '</label>') . "\n";
- ?>
- <input type="submit" value="<?php echo $strGo; ?>" style="vertical-align: middle" />
- </form>
-
- <hr />
-
- <?php
- }
-
- /**
- * If there are more than 20 rows, displays browse/select/insert/empty/drop
- * links again
- */
- if ($fields_cnt > 20) {
- ?>
- <!-- Browse links -->
- <?php
- echo "\n";
- require('./tbl_properties_links.php');
- } // end if ($fields_cnt > 20)
- echo "\n\n";
-
-
- if (!$tbl_is_view) {
- /**
- * Displays indexes
- */
- ?>
- <!-- Indexes, space usage and row statistics -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <?php
- define('PMA_IDX_INCLUDED', 1);
- require ('./tbl_indexes.php');
- ?>
- </td>
-
- <?php
- /**
- * Displays Space usage and row statistics
- */
- // BEGIN - Calc Table Space - staybyte - 9 June 2001
- // loic1, 22 feb. 2002: updated with patch from
- // Joshua Nye <josh at boxcarmedia.com> to get valid
- // statistics whatever is the table type
- if ($cfg['ShowStats']) {
- $nonisam = FALSE;
- $is_innodb = (isset($showtable['Type']) && $showtable['Type'] == 'InnoDB');
- if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
- $nonisam = TRUE;
- }
- if ($nonisam == FALSE || $is_innodb) {
- // Gets some sizes
- $mergetable = FALSE;
- if (isset($showtable['Type']) && $showtable['Type'] == 'MRG_MyISAM') {
- $mergetable = TRUE;
- }
- list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
- if ($mergetable == FALSE) {
- list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
- }
- if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
- list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
- list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
- } else {
- list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
- }
- list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
- if ($table_info_num_rows > 0) {
- list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
- }
-
- // Displays them
- ?>
-
- <!-- Space usage -->
- <td width="20"> </td>
- <td valign="top">
- <a name="showusage"></a>
- <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
- <tr><td class="tblHeaders" colspan="3"><?php echo $strSpaceUsage . ': ' . "\n"; ?></td></tr>
- <tr>
- <th><?php echo $strType; ?></th>
- <th colspan="2" align="center"><?php echo $strUsage; ?></th>
- </tr>
- <tr>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strData; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $data_size; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $data_unit; ?></td>
- </tr>
- <?php
- if (isset($index_size)) {
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strIndex; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $index_size; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $index_unit; ?></td>
- </tr>
- <?php
- }
- if (isset($free_size)) {
- echo "\n";
- ?>
- <tr style="color: #bb0000">
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" style="padding-right: 10px"><?php echo $strOverhead; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>" align="right" nowrap="nowrap"><?php echo $free_size; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><?php echo $free_unit; ?></td>
- </tr>
- <tr>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo $strEffective; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right" nowrap="nowrap"><?php echo $effect_size; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $effect_unit; ?></td>
- </tr>
- <?php
- }
- if (isset($tot_size) && $mergetable == FALSE) {
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" style="padding-right: 10px"><?php echo $strTotalUC; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>" align="right" nowrap="nowrap"><?php echo $tot_size; ?></td>
- <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $tot_unit; ?></td>
- </tr>
- <?php
- }
- // Optimize link if overhead
- if (isset($free_size) && ($tbl_type == 'MYISAM' || $tbl_type == 'BDB')) {
- echo "\n";
- ?>
- <tr>
- <td colspan="3" align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">
- <a href="sql.php?<?php echo $url_query; ?>&pos=0&sql_query=<?php echo urlencode('OPTIMIZE TABLE ' . PMA_backquote($table)); ?>"><?php
- if ($cfg['PropertiesIconic']) {
- echo '<img src="' . $pmaThemeImage . 'b_tbloptimize.png" width="16" height="16" border="0" hspace="2" align="middle" alt="' . $strOptimizeTable. '" />';
- }
- echo $strOptimizeTable;
- ?></a>
- </td>
- </tr>
- <?php
- }
- echo "\n";
- ?>
- </table>
- </td>
-
- <!-- Rows Statistic -->
- <td width="20"> </td>
- <td valign="top">
- <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
- <tr><td class="tblHeaders" colspan="2"><?php echo $strRowsStatistic . ': ' . "\n"; ?></td></tr>
- <tr>
- <th><?php echo $strStatement; ?></th>
- <th align="center"><?php echo $strValue; ?></th>
- </tr>
- <?php
- $i = 0;
- if (isset($showtable['Row_format'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strFormat; ?></td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="<?php echo $cell_align_left; ?>" nowrap="nowrap">
- <?php
- echo ' ';
- if ($showtable['Row_format'] == 'Fixed') {
- echo $strFixed;
- }
- else if ($showtable['Row_format'] == 'Dynamic') {
- echo $strDynamic;
- }
- else {
- echo $showtable['Row_format'];
- }
- echo "\n";
- ?>
- </td>
- </tr>
- <?php
- }
- if (PMA_MYSQL_INT_VERSION >= 40100 && !empty($tbl_collation)) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strCollation; ?></td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="<?php echo $cell_align_left; ?>" nowrap="nowrap">
- <?php
- echo '<dfn title="' . PMA_getCollationDescr($tbl_collation) . '">' . $tbl_collation . '</dfn>';
- ?>
- </td>
- </tr>
- <?php
- }
- if (!$is_innodb && isset($showtable['Rows'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRows; ?></td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
- <?php echo number_format($showtable['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- if (!$is_innodb && isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRowLength; ?> ø</td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
- <?php echo number_format($showtable['Avg_row_length'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- if (!$is_innodb && isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == FALSE) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strRowSize; ?> ø</td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
- <?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- if (isset($showtable['Auto_increment'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strNext; ?> Autoindex</td>
- <td bgcolor="<?php echo $bgcolor; ?>" align="right" nowrap="nowrap">
- <?php echo number_format($showtable['Auto_increment'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- echo "\n";
-
- if (isset($showtable['Create_time'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCreateTime; ?></td>
- <td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
- <?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- echo "\n";
-
- if (isset($showtable['Update_time'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatUpdateTime; ?></td>
- <td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
- <?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- echo "\n";
-
- if (isset($showtable['Check_time'])) {
- $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
- echo "\n";
- ?>
- <tr>
- <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCheckTime; ?></td>
- <td<?php if($theme=='original' || $theme==''){ echo ' style="font-size:' . $font_smaller . '"'; } ?> align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
- <?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
- </td>
- </tr>
- <?php
- }
- echo "\n";
- ?>
- </table>
- </td>
- <?php
- }
- }
- // END - Calc Table Space
- echo "\n";
- ?>
- </tr>
- </table>
- <hr />
- <?php
- } // end if (!$tbl_is_view)
-
- /**
- * Query box, bookmark, insert data from textfile
- */
- $goto = 'tbl_properties_structure.php';
- require('./tbl_query_box.php');
-
- /**
- * Displays the footer
- */
- require_once('./footer.inc.php');
- ?>
-